•  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
  •  
r8 vs r9
......
139139# 라이브러리 설치
140140npm i
141141}}}
142
143== 프론트엔드 설치 ==
144{{{#!syntax sh
145# 루트폴더에서
146git clone https://github.com/wjdgustn/thetree-frontend
147
148# 폴더이동
149cd thetree-frontend
150
151# 라이브러리 설치
152npm i
153}}}
154
155== 스킨 빌드 ==
156{{{#!syntax sh
157#thetree-frontend에서 작업
158# 스킨폴더 만들기
159mkdir skins
160
161#.env.local 파일 만들고 내용입력 예시는 liberty스킨
162echo "SKIN_NAME=liberty" > .env.local
163}}}
164
165=== 편집기 넣기 ===
166{{{#!syntax sh
167#thetree-frontend에서 작업
168mkdir -p plugins/editor
169
170#git clone
171git clone https://github.com/wjdgustn/thetree-monaco
172
173#폴더이동
174cd thetree-monaco
175
176#라이브러리 설치
177npm i
178}}}
179== 빌드하기 ==
180
181{{{#!syntax sh
182npm run build
183}}}
184
185